home *** CD-ROM | disk | FTP | other *** search
- #!/bin/csh
- #
- # Rob Hooft (hooft@chem.ruu.nl) Feb 14, 1993
- # Modified Jan 15, 1994 using hints from Olaf Flebbe.
- #
- (cd libI77 && make CC="gcc" CFLAGS="-O6 -fomit-frame-pointer -DNON_UNIX_STDIO -D_POSIX_SOURCE")
- (cd libF77 && make CC="gcc" CFLAGS="-O6 -fomit-frame-pointer -DNON_UNIX_STDIO -D_POSIX_SOURCE")
- ar r libf2c.a lib?77/*.o
- ranlib libf2c.a
- f2c hello.f
- cc -s -N -o hello hello.c libf2c.a -lm
-